summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/document-list-only/layout.tsx
diff options
context:
space:
mode:
author0-Zz-ang <s1998319@gmail.com>2025-08-17 23:05:19 +0900
committer0-Zz-ang <s1998319@gmail.com>2025-08-17 23:05:19 +0900
commit5adc1df95f80fbec7a0b5bbee15448b10d5aec3a (patch)
treec748910aacb05f13e335f9afa39eb9d763f88d7c /app/[lng]/evcp/(evcp)/document-list-only/layout.tsx
parent6013fe51293ea067400e6b3b26691705608eba22 (diff)
(박서영)evcp/document-list-only, evcp/vendor-data 생성
Diffstat (limited to 'app/[lng]/evcp/(evcp)/document-list-only/layout.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/document-list-only/layout.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/[lng]/evcp/(evcp)/document-list-only/layout.tsx b/app/[lng]/evcp/(evcp)/document-list-only/layout.tsx
new file mode 100644
index 00000000..17e78c0a
--- /dev/null
+++ b/app/[lng]/evcp/(evcp)/document-list-only/layout.tsx
@@ -0,0 +1,17 @@
+import { Shell } from "@/components/shell"
+import VendorDocumentListClientEvcp from "@/components/document-lists/vendor-doc-list-client-evcp"
+
+// Layout 컴포넌트는 서버 컴포넌트입니다
+export default async function EvcpDocuments({
+ children,
+}: {
+ children: React.ReactNode
+}) {
+ return (
+ <Shell className="gap-2">
+ <VendorDocumentListClientEvcp>
+ {children}
+ </VendorDocumentListClientEvcp>
+ </Shell>
+ )
+}